home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Telnet 2.6.1d1 4⁄26⁄94 Folder / source / ftp / binsubs.proto.h < prev    next >
Text File  |  1993-10-24  |  387b  |  27 lines

  1. void GetFileInfo(short volume, long dirID, StringPtr name, HFileParam *iop);
  2. long MBsize( MBFile *mbfp);
  3. MBFile *MBopen(char *file, short vrefnum, long dirID, short mode);
  4.  
  5. void init_mb_files(void);
  6. void close_mb_files(void);
  7.  
  8. long MBread
  9.   (
  10.     MBFile *in,
  11.     void *buffer,
  12.     long size
  13.   );
  14.  
  15. long MBwrite
  16.   (
  17.     MBFile *out,
  18.     void *buffer,
  19.     long size
  20.   );
  21.  
  22. void MBclose
  23.   (
  24.     MBFile *out
  25.   );
  26.  
  27.